/** * @namespace HQ */ var HQ = HQ || {}; /** * @namespace HQ.components * @memberof HQ */ HQ.components = HQ.components || {}; /** * @namespace HQ.sections * @memberof HQ */ HQ.sections = HQ.sections || {}; /** * @function * @name mediaqueries * @description Mediaqueries for enquire. * @memberof HQ * @type {{MOBILE: string, NOT_MOBILE: string, TABLET: string, DESKTOP: string, NOT_DESKTOP: string}} */ HQ.mediaqueries = { MOBILE : 'only screen and (max-width: 767px)', NOT_MOBILE : 'only screen and (min-width: 768px)', TABLET : 'only screen and (min-width: 768px) and (max-width: 912px)', DESKTOP : 'only screen and (min-width: 913px)', NOT_DESKTOP: 'only screen and (max-width: 912px)' };